encoding/hex.dumper.buf (field)

22 uses

	encoding/hex (current package)
		hex.go#L222: 	buf        [14]byte
		hex.go#L247: 			h.buf[0] = byte(h.n >> 24)
		hex.go#L248: 			h.buf[1] = byte(h.n >> 16)
		hex.go#L249: 			h.buf[2] = byte(h.n >> 8)
		hex.go#L250: 			h.buf[3] = byte(h.n)
		hex.go#L251: 			Encode(h.buf[4:], h.buf[:4])
		hex.go#L252: 			h.buf[12] = ' '
		hex.go#L253: 			h.buf[13] = ' '
		hex.go#L254: 			_, err = h.w.Write(h.buf[4:])
		hex.go#L259: 		Encode(h.buf[:], data[i:i+1])
		hex.go#L260: 		h.buf[2] = ' '
		hex.go#L264: 			h.buf[3] = ' '
		hex.go#L269: 			h.buf[3] = ' '
		hex.go#L270: 			h.buf[4] = '|'
		hex.go#L273: 		_, err = h.w.Write(h.buf[:l])
		hex.go#L303: 	h.buf[0] = ' '
		hex.go#L304: 	h.buf[1] = ' '
		hex.go#L305: 	h.buf[2] = ' '
		hex.go#L306: 	h.buf[3] = ' '
		hex.go#L307: 	h.buf[4] = '|'
		hex.go#L316: 		_, err = h.w.Write(h.buf[:l])